home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / gcc / ixemlsrc.lha / ixemul / static / regerror.c < prev    next >
C/C++ Source or Header  |  1996-03-13  |  250b  |  19 lines

  1. #include <regexp.h>
  2. #include <stdio.h>
  3.  
  4. void
  5. regerror(s)
  6. const char *s;
  7. {
  8. #ifdef ERRAVAIL
  9.     error("regexp: %s", s);
  10. #else
  11. /*
  12.     fprintf(stderr, "regexp(3): %s\n", s);
  13.     exit(1);
  14. */
  15.     return;      /* let std. egrep handle errors */
  16. #endif
  17.     /* NOTREACHED */
  18. }
  19.